Use _Exit and _exit from musl source. NFC - #14464
Merged
Merged
Conversation
sbc100
force-pushed
the
use_musl_exit_part1
branch
from
June 16, 2021 20:05
565e9da to
fc5f81b
Compare
sbc100
enabled auto-merge (squash)
June 16, 2021 21:16
sbc100
force-pushed
the
use_musl_exit_part1
branch
4 times, most recently
from
June 17, 2021 01:27
b5a50ef to
1d70d1c
Compare
This is part 1 of a change I'm working on to use musl's exit code. This is NFC because we endup calling proc_exit which calls exit in any case.
sbc100
force-pushed
the
use_musl_exit_part1
branch
from
June 17, 2021 17:57
1d70d1c to
a05d712
Compare
sbc100
added a commit
that referenced
this pull request
Jun 18, 2021
Followup to #14464, we now use atexit and exit and other functions from musl.
sbc100
added a commit
that referenced
this pull request
Jun 18, 2021
Followup to #14464, we now use atexit and exit and other functions from musl.
sbc100
added a commit
that referenced
this pull request
Jun 18, 2021
Followup to #14464, we now use atexit and exit and other functions from musl.
sbc100
added a commit
that referenced
this pull request
Aug 12, 2022
Followup to #14464, we now use atexit and exit and other functions from musl.
sbc100
added a commit
that referenced
this pull request
Jan 3, 2025
Followup to #14464, we now use atexit and exit and other functions from musl.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is part 1 of a change I'm working on to use musl's exit code. This
is NFC because we endup calling proc_exit which calls exit in any case.